feat: official AI agent skills + MCP server for anime.js v4#1177
Open
antlio wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
description
this pr is a proposal to add official anime.js skills + an optional MCP server so coding assistants (Claude Code, Cursor, Copilot, Gemini) generate correct anime.js v4 code instead of the deprecated v3 syntax
skills/: 11 SKILL.md files (core, timeline, svg, text, scroll-draggable, utils-easings, waapi, engine, react, frameworks, migration-v3-v4), each derived from the repo's ownexamples/and verified against the built library llms.txt (root + skills/)mcp/: optional MCP server exposing the skills as resources plus two tools (search_anime_docs, check_anime_v4_syntax), with unit tests, the skills are all most setups need.github/workflows/skills.yml: runs the validator and MCP tests in CIvalidate the skills against the built library (no v3 leaks)
npm run build && npm run validate:skills
run the MCP server tests + a live smoke check
use the skills in any agent
npx skills add .then ask the agent "animate a square moving right with anime.js" which should emit import { animate } from 'animejs'; animate('.square', { x: 320, ... }) (v4), not the v3 anime({ targets, translateX })
closes #1164, closes #1139, closes #1105, addresses #1047